feat: add AgentRunner, AgentGraphRunner ABCs and result types (PR-4)#103
Merged
jsonbailey merged 2 commits intomainfrom Mar 26, 2026
Merged
feat: add AgentRunner, AgentGraphRunner ABCs and result types (PR-4)#103jsonbailey merged 2 commits intomainfrom
jsonbailey merged 2 commits intomainfrom
Conversation
db27c82 to
ed8787a
Compare
4bef65c to
e10be52
Compare
ed8787a to
e2df180
Compare
keelerm84
approved these changes
Mar 26, 2026
Adds the runner ABCs and result types needed to support agent and agent graph execution in later PRs: - ldai/runners/agent_runner.py: AgentRunner ABC with run(input) -> AgentResult - ldai/runners/agent_graph_runner.py: AgentGraphRunner ABC with run(input) -> AgentGraphResult - ldai/runners/types.py: AgentResult, AgentGraphResult (output, raw, metrics), ToolRegistry alias - Exports all new types from ldai top-level __init__.py Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
e2df180 to
ff3022e
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
…iders namespace Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Adds the runner ABCs and result types needed to support agent and agent graph execution in later PRs:
Note
Low Risk
Mostly additive type/interface work (new Protocols, result dataclasses, exports) with a small behavioral surface change from
ModelRunnerABC to runtime-checkableProtocol, which could affectisinstancechecks but is covered by tests.Overview
Introduces new runtime capability interfaces for agent execution:
AgentRunnerandAgentGraphRunner(asyncrun()), along with correspondingAgentResult/AgentGraphResultdataclasses and aToolRegistrytype alias.Refactors
ModelRunnerfrom an abstract base class to a runtime-checkableProtocol, and re-exports the new types fromldai.providersand top-levelldaifor public consumption; adds unit tests validating structural typing and exports.Written by Cursor Bugbot for commit af50590. This will update automatically on new commits. Configure here.